home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac: Not for Sale / Another.not.for.sale (Australia).iso / fade into you / getting there / Apps / MOO-1.7.6.src / inc / eval_env.h < prev    next >
Text File  |  1994-11-02  |  2KB  |  49 lines

  1. /******************************************************************************
  2.   Copyright (c) 1992 Xerox Corporation.  All rights reserved.
  3.   Portions of this code were written by Stephen White, aka ghond.
  4.   Use and copying of this software and preparation of derivative works based
  5.   upon this software are permitted.  Any distribution of this software or
  6.   derivative works must comply with all applicable United States export
  7.   control laws.  This software is made available AS IS, and Xerox Corporation
  8.   makes no warranty about the software, its performance or its conformity to
  9.   any specification.  Any person obtaining a copy of this software is requested
  10.   to send their name and post office or electronic mail address to:
  11.     Pavel Curtis
  12.     Xerox PARC
  13.     3333 Coyote Hill Rd.
  14.     Palo Alto, CA 94304
  15.     Pavel@Xerox.Com
  16.  *****************************************************************************/
  17.  
  18. #ifndef Eval_env_h
  19. #define Eval_env_h 1
  20.  
  21. #include "config.h"
  22. #include "structures.h"
  23.  
  24. extern Var     *new_rt_env(unsigned size);
  25. extern void     free_rt_env(Var *rt_env, unsigned size);
  26. extern Var     *copy_rt_env(Var *from, unsigned size);
  27.  
  28. void            set_rt_env_obj(Var *env, int slot, Objid o);
  29. void        set_rt_env_str(Var *env, int slot, const char *s);
  30. void         set_rt_env_var(Var *env, int slot, Var v);
  31.  
  32. void        fill_in_rt_consts(Var *env);
  33.  
  34. #endif
  35.  
  36. /* $Log: eval_env.h,v $
  37.  * Revision 1.4  1992/10/23  23:03:47  pavel
  38.  * Added copyright notice.
  39.  *
  40.  * Revision 1.3  1992/10/21  03:02:35  pavel
  41.  * Converted to use new automatic configuration system.
  42.  *
  43.  * Revision 1.2  1992/08/31  22:22:36  pjames
  44.  * Changed some `char *'s to `const char *'
  45.  *
  46.  * Revision 1.1  1992/08/10  16:20:00  pjames
  47.  * Initial RCS-controlled version
  48.  */
  49.